home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / IMPORTEXPORT.DTML < prev    next >
Encoding:
Text File  |  2000-06-01  |  2.5 KB  |  99 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>Import Object</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <dtml-var manage_tabs>
  8.  
  9. <P>
  10. You can export Zope objects to a file in order to transfer
  11. them to a different Zope installation. You can either choose
  12. to download the export file to your local machine, or save it
  13. in the "var" directory of your Zope installation 
  14. on the server.
  15. </P>
  16.  
  17. <FORM ACTION="manage_exportObject" METHOD="POST">
  18. <TABLE CELLSPACING="2">
  19. <TR>
  20.   <TH ALIGN="LEFT" VALIGN="TOP">Export object id</TH>
  21.   <TD ALIGH="LEFT" VALIGN="TOP">
  22.   <INPUT TYPE="TEXT" NAME="id" SIZE="25" VALUE="<dtml-if ids><dtml-var 
  23.   "ids[0]" html_quote></dtml-if>">
  24.   </TD>
  25. </TR>
  26. <TR>
  27.   <TH ALIGN="LEFT" VALIGN="TOP">Export to</TH>
  28.   <TD ALIGN="LEFT" VALIGN="TOP">
  29.   <INPUT TYPE="RADIO" NAME="download:int" VALUE="1">
  30.   Download to local machine<BR>
  31.   <INPUT TYPE="RADIO" NAME="download:int" VALUE="0" checked>
  32.   Save to file on server
  33.   </TD>
  34. </TR>  
  35. <TR>
  36.   <TH ALIGN="LEFT" VALIGN="TOP"></TH>
  37.   <TD ALIGH="LEFT" VALIGN="TOP">
  38.   <INPUT TYPE="CHECKBOX" NAME="toxml" VALUE="Y"> XML format?
  39.   </TD>
  40. </TR>
  41. <TR>
  42.   <TD></TD>
  43.   <TD><INPUT TYPE="SUBMIT" VALUE="Export"></TD>
  44. </TR>
  45. </TABLE>
  46. </FORM>
  47.  
  48. <p>
  49. You may import Zope objects which have been previously
  50. exported to a file, by placing the file in the "import"
  51. directory of your Zope installation on the server. You should create 
  52. the "import" directory in the root of your Zope installation 
  53. if it does not yet exist.
  54. </p>
  55.  
  56. <p>
  57. Note that by default, you will become the owner of the objects 
  58. that you are importing. If you wish the imported objects to retain 
  59. their existing ownership information, select "retain existing 
  60. ownership information".
  61. </p>
  62.  
  63. <FORM ACTION="manage_importObject" METHOD="POST">
  64. <TABLE CELLSPACING="2">
  65.  
  66. <TR>
  67.   <TH ALIGN="LEFT" VALIGN="TOP">Import file name</TH>
  68.   <TD ALIGN="LEFT" VALIGN="TOP">
  69.   <INPUT TYPE="text" NAME="file" SIZE="25" VALUE="">
  70.   </TD>
  71. </TR>
  72. <TR>
  73.   <TH ALIGN="LEFT" VALIGN="TOP">
  74.   Ownership
  75.   </TH>
  76.   <TD ALIGN="LEFT" VALIGN="TOP">
  77.   <input type="radio" name="set_owner:int" value="1" checked>
  78.   Take ownership of imported objects
  79.   <br>
  80.   <input type="radio" name="set_owner:int" value="0"> 
  81.   Retain existing ownership information
  82.   </TD>
  83. </TR>
  84. <TR>
  85.   <TD></TD>
  86.   <TD><INPUT TYPE="SUBMIT" VALUE="Import">
  87.   </TD>
  88. </TR>
  89. </TABLE>
  90. </FORM>
  91. </BODY>
  92. </HTML>
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.